The version check was written during OpenSSL 0.9 era.
It is not needed in Debian and only getting in the way.
Gbp-Pq: Name Check-only-major-OpenSSL-version.patch
* (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
* - values is represented as 0xMMNNFFPPS: major minor fix patch status
* 0x00090705f == 0.9.7e release */
- if((ssl_version >> 12) != (OPENSSL_VERSION_NUMBER >> 12)) {
+ if((ssl_version >> 28) != (OPENSSL_VERSION_NUMBER >> 28)) {
LM_CRIT("installed openssl library"
" version is too different from the library the " NAME " tls"
" module was compiled with: installed \"%s\" (0x%08lx),"